home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HPAVC
/
HPAVC CD-ROM.iso
/
ABUSESRC.ZIP
/
AbuseSrc
/
abuse
/
inc
/
lcache.hpp
< prev
next >
Wrap
C/C++ Source or Header
|
1996-01-24
|
340b
|
16 lines
#ifndef __LCACHE_HPP_
#define __LCACHE_HPP_
#include "lisp.hpp"
#ifdef SCADALISP
#define can_cache_lisp() 0
#else
#define can_cache_lisp() 1
#endif
long block_size(Cell *level); // return number of bytes to save this block of code
void write_level(bFILE *fp, Cell *level);
Cell *load_block(bFILE *fp);
#endif